func runtime.mcount
7 uses
runtime (current package)
os_linux.go#L178: print("runtime: failed to create new OS thread (have ", mcount(), " already; errno=", -ret, ")\n")
proc.go#L761: if mcount() > sched.maxmcount {
proc.go#L4423: func mcount() int32 {
proc.go#L4967: run := mcount() - sched.nmidle - sched.nmidlelocked - sched.nmsys
proc.go#L4972: print("runtime: checkdead: nmidle=", sched.nmidle, " nmidlelocked=", sched.nmidlelocked, " mcount=", mcount(), " nmsys=", sched.nmsys, "\n")
proc.go#L5337: print("SCHED ", (now-starttime)/1e6, "ms: gomaxprocs=", gomaxprocs, " idleprocs=", sched.npidle, " threads=", mcount(), " spinningthreads=", sched.nmspinning, " idlethreads=", sched.nmidle, " runqueue=", sched.runqsize)
signal_unix.go#L760: if crashing < mcount()-int32(extraMCount) {